home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Illustrator 6.0 SDK r1 Mac / AI Plugin Interface / AITransformAgain.h < prev    next >
Text File  |  1995-12-21  |  2KB  |  94 lines

  1. /**
  2.  
  3.     AITransformAgain.h
  4.     Copyright (c) 1995 Adobe Systems Incorporated.
  5.     All Rights Reserved
  6.  
  7.     Adobe Illustrator 6.0 Transform Again Suite.
  8.  
  9.  **/
  10.  
  11. #ifndef __AITransformAgain__
  12. #define __AITransformAgain__
  13.  
  14.  
  15. /*******************************************************************************
  16.  **
  17.  **    Imports
  18.  **
  19.  **/
  20.  
  21. #include "AITypes.h"
  22. #include "AIPlugin.h"
  23.  
  24.  
  25. #if Macintosh
  26.     #ifdef __cplusplus
  27.     extern "C" {
  28.     #endif
  29.     
  30.     #if PRAGMA_ALIGN_SUPPORTED
  31.     #pragma options align=mac68k
  32.     #endif
  33.     
  34.     #if PRAGMA_IMPORT_SUPPORTED
  35.     #pragma import on
  36.     #endif
  37. #endif
  38.  
  39.  
  40. /*******************************************************************************
  41.  **
  42.  ** Constants
  43.  **
  44.  **/
  45.  
  46. #define kAITransformAgainSuite            "AI Transform Again Suite"
  47. #define kAITransformAgainVersion        2
  48.  
  49. #define kSelectorAITransformAgain        "AI Transform Again"
  50.  
  51.  
  52. /*******************************************************************************
  53.  **
  54.  ** Types
  55.  **
  56.  **/
  57.  
  58. // The contents of a transform again message.
  59. typedef struct {
  60.     AIPluginData d;
  61. } AITransformAgainMessage;
  62.  
  63.  
  64. /*******************************************************************************
  65.  **
  66.  **    Suite Record
  67.  **
  68.  **/
  69.  
  70. typedef struct {
  71.  
  72.     MACPASCAL FXErr (*SetTransformAgain)( AIPluginHandle self );
  73.     MACPASCAL FXErr (*GetTransformAgain)( AIPluginHandle *plugin );
  74.  
  75. } AITransformAgainSuite;
  76.  
  77.  
  78. #if Macintosh
  79.     #if PRAGMA_IMPORT_SUPPORTED
  80.     #pragma import off
  81.     #endif
  82.     
  83.     #if PRAGMA_ALIGN_SUPPORTED
  84.     #pragma options align=reset
  85.     #endif
  86.     
  87.     #ifdef __cplusplus
  88.     }
  89.     #endif
  90. #endif
  91.  
  92.  
  93. #endif
  94.